{% extends "global/Page.html" %} {% load staticfiles otree_tags %} {% block title %} Stage 1: Investment decision 2 {% endblock %} {% block content %}

In each decision you will decide what percent of $10 to allocate to a "risky option" and a "safe option". The amount you put in the safe option remains as it is. Your earnings from the amount you put in the risky option depends on chance. A coin will be flipped by the computer for each participant at the end.

  • If it comes up heads, the amount allocated to the risky option will be multiplied by zero.
  • If it comes up tails, the amount allocated to the risky option will be multiplied by x = 1.5, 2 and 2.5, respectively, in each of the three decisions.

  • One of the three decisions you make will be randomly selected to be paid.



    When x = {% if player.random_num_x == 1 %} 1.5, {% elif player.random_num_x == 2 %} 2.5, {% else %} 2, {% endif %} I wish to allocate my individual earnings as follows:

    {% formfields %}
    {% next_button %} {% endblock %}